Spaces:
Sleeping
Sleeping
Kate Forsberg
commited on
Commit
·
ddbf5e3
1
Parent(s):
5c3e885
new
Browse files
app.py
CHANGED
@@ -122,12 +122,13 @@ def build_agent(session_id:str,message:str) -> Agent:
|
|
122 |
]
|
123 |
)
|
124 |
|
|
|
125 |
|
126 |
query_client = StructureRunClient(
|
127 |
name="QueryResumeSearcher",
|
128 |
description="Use it to search for a candidate with the query.",
|
129 |
driver = GriptapeCloudStructureRunDriver(
|
130 |
-
base_url=os.
|
131 |
structure_id=os.getenv("GT_STRUCTURE_ID"),
|
132 |
api_key=os.getenv("GT_CLOUD_API_KEY"),
|
133 |
structure_run_wait_time_interval=5,
|
|
|
122 |
]
|
123 |
)
|
124 |
|
125 |
+
print("Base URL", os.environ.get("BASE_URL","https://cloud.griptape.ai"))
|
126 |
|
127 |
query_client = StructureRunClient(
|
128 |
name="QueryResumeSearcher",
|
129 |
description="Use it to search for a candidate with the query.",
|
130 |
driver = GriptapeCloudStructureRunDriver(
|
131 |
+
base_url=os.environ.get("BASE_URL","https://cloud.griptape.ai"),
|
132 |
structure_id=os.getenv("GT_STRUCTURE_ID"),
|
133 |
api_key=os.getenv("GT_CLOUD_API_KEY"),
|
134 |
structure_run_wait_time_interval=5,
|