Skip to content

Commit

Permalink
fix: url for parea
Browse files Browse the repository at this point in the history
  • Loading branch information
joschkabraun committed Nov 27, 2023
1 parent 6c82d48 commit 33beae0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion parea/cookbook/tracing_and_evaluating_openai_endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def main():
_, trace_id = unhelpful_chat()

if os.getenv("PAREA_API_KEY"):
print(f"You can view the logs at: https://optimusprompt.ai/logs/detailed/{trace_id}")
print(f"You can view the logs at: https://app.parea.ai/logs/detailed/{trace_id}")
if use_cache:
time.sleep(5) # wait for local eval function to finish
path_csv = f"trace_logs-{int(time.time())}.csv"
Expand Down
4 changes: 2 additions & 2 deletions parea/cookbook/tracing_with_Parea_sdk.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@
"id": "97fb9f73"
},
"source": [
"Now call the chain. If you set up your API key correctly at the start of this notebook, all the results should be traced to [Parea](https://www.optimusprompt.ai/logs). We will prompt the app to generate an argument that coffee is good for you."
"Now call the chain. If you set up your API key correctly at the start of this notebook, all the results should be traced to [Parea](https://www.app.parea.ai/logs). We will prompt the app to generate an argument that coffee is good for you."
]
},
{
Expand Down Expand Up @@ -276,7 +276,7 @@
"source": [
"## Recording feedback\n",
"\n",
"The above is all you need to save your app's traces to Parea! You can try changing the functions or raising errors in the above code to see how it's visualized in [Parea](https://www.optimusprompt.ai/logs).\n",
"The above is all you need to save your app's traces to Parea! You can try changing the functions or raising errors in the above code to see how it's visualized in [Parea](https://www.app.parea.ai/logs).\n",
"\n",
"You can use the trace_id for other things like monitoring user feedback. You can use the get_current_trace_id() helper function to get the trace_id from within the function context.\n",
"\n",
Expand Down

0 comments on commit 33beae0

Please sign in to comment.