corentinm7 commited on
Commit
e8630c5
·
verified ·
1 Parent(s): 4ded9f0

Upload folder using huggingface_hub

Browse files
CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
- # v0.0.3
 
 
2
 
 
3
  - Async Query of Mistral API
4
 
5
  # v0.0.2
 
1
+ # v0.0.4
2
+
3
+ - Fix some non-async calls
4
 
5
+ # v0.0.3
6
  - Async Query of Mistral API
7
 
8
  # v0.0.2
pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
  [project]
2
  name = "opensymbiose"
3
- version = "0.0.3"
4
  description = "OpenSymbiose is an open-source biotechnology / biology research AI agent designed to support researcher."
5
  readme = "README.md"
6
  requires-python = ">=3.10"
 
1
  [project]
2
  name = "opensymbiose"
3
+ version = "0.0.4"
4
  description = "OpenSymbiose is an open-source biotechnology / biology research AI agent designed to support researcher."
5
  readme = "README.md"
6
  requires-python = ">=3.10"
requirements.txt CHANGED
@@ -1,5 +1,5 @@
1
  # For HuggingFace Space Gradio App
2
- opensymbiose
3
  mistralai
4
  python-dotenv
5
  gradio
 
1
  # For HuggingFace Space Gradio App
2
+ opensymbiose>=0.0.4
3
  mistralai
4
  python-dotenv
5
  gradio
src/opensymbiose/agents/create_agents.py CHANGED
@@ -48,3 +48,8 @@ async def get_agents():
48
  A dictionary of agent names to Agent objects
49
  """
50
  return await setup_agents()
 
 
 
 
 
 
48
  A dictionary of agent names to Agent objects
49
  """
50
  return await setup_agents()
51
+
52
+
53
+ # For backwards compatibility and direct script execution
54
+ # Note: This is now just a placeholder as setup_agents() is async and can't be awaited at module level
55
+ symbiose_agents = {}
uv.lock CHANGED
@@ -1310,7 +1310,7 @@ wheels = [
1310
 
1311
  [[package]]
1312
  name = "opensymbiose"
1313
- version = "0.0.3"
1314
  source = { editable = "." }
1315
  dependencies = [
1316
  { name = "biopython" },
 
1310
 
1311
  [[package]]
1312
  name = "opensymbiose"
1313
+ version = "0.0.4"
1314
  source = { editable = "." }
1315
  dependencies = [
1316
  { name = "biopython" },