mirror of
https://github.com/run-llama/template-workflow-document-qa.git
synced 2026-06-30 21:47:58 -04:00
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:
committed by
GitHub
parent
48f1bbaf8d
commit
5c3d3461de
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user