repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | --- |
| #2 | title: "🧊 Helicone" |
| #3 | description: "Implement Helicone, the open-source LLM observability platform, with Embedchain. Monitor, debug, and optimize your AI applications effortlessly." |
| #4 | "twitter:title": "Helicone LLM Observability for Embedchain" |
| #5 | --- |
| #6 | |
| #7 | Get started with [Helicone](https://www.helicone.ai/), the open-source LLM observability platform for developers to monitor, debug, and optimize their applications. |
| #8 | |
| #9 | To use Helicone, you need to do the following steps. |
| #10 | |
| #11 | ## Integration Steps |
| #12 | |
| #13 | <Steps> |
| #14 | <Step title="Create an account + Generate an API Key"> |
| #15 | Log into [Helicone](https://www.helicone.ai) or create an account. Once you have an account, you |
| #16 | can generate an [API key](https://helicone.ai/developer). |
| #17 | |
| #18 | <Note> |
| #19 | Make sure to generate a [write only API key](helicone-headers/helicone-auth). |
| #20 | </Note> |
| #21 | |
| #22 | </Step> |
| #23 | <Step title="Set base_url in the your code"> |
| #24 | You can configure your base_url and OpenAI API key in your codebase |
| #25 | <CodeGroup> |
| #26 | |
| #27 | ```python main.py |
| #28 | import os |
| #29 | from embedchain import App |
| #30 | |
| #31 | # Modify the base path and add a Helicone URL |
| #32 | os.environ["OPENAI_API_BASE"] = "https://oai.helicone.ai/{YOUR_HELICONE_API_KEY}/v1" |
| #33 | # Add your OpenAI API Key |
| #34 | os.environ["OPENAI_API_KEY"] = "{YOUR_OPENAI_API_KEY}" |
| #35 | |
| #36 | app = App() |
| #37 | |
| #38 | # Add data to your app |
| #39 | app.add("https://en.wikipedia.org/wiki/Elon_Musk") |
| #40 | |
| #41 | # Query your app |
| #42 | print(app.query("How many companies did Elon found? Which companies?")) |
| #43 | ``` |
| #44 | |
| #45 | </CodeGroup> |
| #46 | </Step> |
| #47 | <Step title="Now you can see all passing requests through Embedchain in Helicone"> |
| #48 | <img src="/images/helicone-embedchain.png" alt="Embedchain requests" /> |
| #49 | </Step> |
| #50 | </Steps> |
| #51 | |
| #52 | Check out [Helicone](https://www.helicone.ai) to see more use cases! |
| #53 |