Spaces:
Sleeping
Sleeping
Commit ·
bff51de
1
Parent(s): b59a6e3
Fixed faiss requirement
Browse files- README.md +1 -0
- requirements.txt +1 -1
README.md
CHANGED
|
@@ -30,6 +30,7 @@ This is my submission for the Text Adventure Agent assignment. My agent uses the
|
|
| 30 |
|------|-------------|
|
| 31 |
| `agent.py` | ReAct agent with `StudentAgent` class |
|
| 32 |
| `mcp_server.py` | MCP server with game interaction tools |
|
|
|
|
| 33 |
| `app.py` | Gradio interface for HF Space |
|
| 34 |
| `requirements.txt` | Additional dependencies |
|
| 35 |
|
|
|
|
| 30 |
|------|-------------|
|
| 31 |
| `agent.py` | ReAct agent with `StudentAgent` class |
|
| 32 |
| `mcp_server.py` | MCP server with game interaction tools |
|
| 33 |
+
| `cross_episode_memory.py` | The memory used across different runs of the agent |
|
| 34 |
| `app.py` | Gradio interface for HF Space |
|
| 35 |
| `requirements.txt` | Additional dependencies |
|
| 36 |
|
requirements.txt
CHANGED
|
@@ -11,5 +11,5 @@
|
|
| 11 |
python-dotenv
|
| 12 |
spacy
|
| 13 |
|
| 14 |
-
faiss
|
| 15 |
sentence-transformers
|
|
|
|
| 11 |
python-dotenv
|
| 12 |
spacy
|
| 13 |
|
| 14 |
+
faiss-cpu
|
| 15 |
sentence-transformers
|