Skip to content

Commit

Permalink
Add langgraph.json configuration file
Browse files Browse the repository at this point in the history
Fixes virattt#99

Add `langgraph.json` configuration file to enable running the application with the `langgraph` CLI.

* Add `langgraph.json` to the root directory with necessary configuration for `langgraph` CLI.
* Include settings for dependencies, graphs, environment variables, store index, Python and Node versions, pip config file, and additional Dockerfile lines.

---

For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/virattt/ai-hedge-fund/issues/99?shareId=XXXX-XXXX-XXXX-XXXX).
  • Loading branch information
The-CodeINN committed Feb 17, 2025
1 parent 185aa5a commit 3bdce8e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions langgraph.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"dependencies": ["."],
"graphs": {
"hedge_fund": "./src/main.py:app"
},
"env": ".env",
"store": {
"index": {
"embed": "openai:text-embedding-3-small",
"dims": 1536,
"fields": ["$"]
}
},
"python_version": "3.11",
"node_version": "20",
"pip_config_file": "./pip.conf",
"dockerfile_lines": [
"RUN apt-get update && apt-get install -y libgomp1"
]
}

0 comments on commit 3bdce8e

Please sign in to comment.