feat: add a llm-based workflow representation/viz package (#63)

* feat: add a llm-based workflow representation/viz package

* feat: add static analysis and adapt LLM analysis

* ci: lint and format

* docs: readme nits

* feat: tune json repr and move it into coding-agent package

* ci: lint and format

* fix: safe loading env variables with os.getenv instead of os.environ in templates

* chore: use dedent in python templating
This commit is contained in:
Clelia (Astra) Bertelli
2025-11-19 17:02:54 +01:00
committed by GitHub
parent 48f1bbaf8d
commit 5c3d3461de
+1 -1
View File
@@ -12,7 +12,7 @@ from llama_cloud_services.parse import ResultType
# name for development
DEPLOYMENT_NAME = os.getenv("LLAMA_DEPLOY_DEPLOYMENT_NAME")
# required for all llama cloud calls
LLAMA_CLOUD_API_KEY = os.environ["LLAMA_CLOUD_API_KEY"]
LLAMA_CLOUD_API_KEY = os.getenv("LLAMA_CLOUD_API_KEY")
# get this in case running against a different environment than production
LLAMA_CLOUD_BASE_URL = os.getenv("LLAMA_CLOUD_BASE_URL")
LLAMA_CLOUD_PROJECT_ID = os.getenv("LLAMA_DEPLOY_PROJECT_ID")