Skip to content

Commit cf36b23

Browse files
Feat: Fix Docker and bump project
1 parent 53dd5ac commit cf36b23

File tree

5 files changed

+19
-12
lines changed

5 files changed

+19
-12
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
# v0.0.2
1+
# v0.0.3
2+
3+
- Async Query of Mistral API
24

5+
# v0.0.2
36
- More lax python version for HuggingFace Space
47

58
# v0.0.1

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@ COPY src/opensymbiose /src/opensymbiose
2121
EXPOSE 7860
2222

2323
ENV PYTHONPATH=/src
24+
ENV GRADIO_SERVER_NAME=0.0.0.0
2425
CMD ["uv", "run", "gradio", "/src/opensymbiose/gradio/app.py"]

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,7 @@ on [HuggingFace](https://huggingface.co/spaces/corentinm7/opensymbiose)
2020

2121
**Note:** In every-case you will need an environment variable or a .env file with your `MISTRAL_API_KEY` secret.
2222

23-
- Install from PyPi: `pip install opensymbiose` and run in your terminal `opensymbiose` it will boot the gradio app.
23+
- Install from PyPi: `pip install opensymbiose`
24+
- Locally: Run in your terminal `opensymbiose` it will boot the gradio app
25+
- In Docker: `make dockerbuild && make dockerrun` to run in Docker.
2426
- From GitHub: clone the repository and run `make dev`. It will launch the Gradio app with hot-reloading.
25-
26-
## Usage
27-
28-
Placeholder
29-

docs/index.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,20 @@ hide:
77

88
# OpenSymbiose: Open Source Biotechnology AI Agent
99

10-
OpenSymbiose is an open-source biotechnology / biology research AI agent designed to support researcher.
10+
OpenSymbiose is an open-source biotechnology / biology research AI agent designed to support researchers.
11+
12+
[DOCUMENTATION](https://lambda-science.github.io/OpenSymbiose/) - [DEMO ON HUGGINGFACE](https://huggingface.co/spaces/corentinm7/opensymbiose) - [CODE REPO](https://github.com/lambda-science/OpenSymbiose)
1113

1214
Creator and Maintainer: [**Corentin Meyer**, PhD](https://cmeyer.fr/) - <[email protected]>
1315

1416
## Installation
1517

16-
From PyPi: `pip install opensymbiose`
18+
If you want just to interact with it, an online demo is available
19+
on [HuggingFace](https://huggingface.co/spaces/corentinm7/opensymbiose)
1720

18-
## Usage
21+
**Note:** In every-case you will need an environment variable or a .env file with your `MISTRAL_API_KEY` secret.
1922

20-
Placeholder
23+
- Install from PyPi: `pip install opensymbiose`
24+
- Locally: Run in your terminal `opensymbiose` it will boot the gradio app
25+
- In Docker: `make dockerbuild && make dockerrun` to run in Docker.
26+
- From GitHub: clone the repository and run `make dev`. It will launch the Gradio app with hot-reloading.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "opensymbiose"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
description = "OpenSymbiose is an open-source biotechnology / biology research AI agent designed to support researcher."
55
readme = "README.md"
66
requires-python = ">=3.10"

0 commit comments

Comments
 (0)