Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Readme fixes and global colors #111

Merged
merged 3 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[Laminar](https://www.lmnr.ai) is an all-in-one open-source platform for engineering AI products. Trace, evaluate, label, and analyze LLM data.

- [x] Tracing
- [x] OpenTelemetry-based automatic tracing of common AI frameworks and SDKs (LangChain, OpenAI, Anthropic ...) with just 2 lines of code. (powered by an amazing [OpenLLMetry](https://github.com/traceloop/openllmetry)).
- [x] OpenTelemetry-based automatic tracing of common AI frameworks and SDKs (LangChain, OpenAI, Anthropic ...) with just 2 lines of code. (powered by amazing [OpenLLMetry](https://github.com/traceloop/openllmetry)).
- [x] Trace input/output, latency, cost, token count.
- [x] Function tracing with `observe` decorator/wrapper.
- [x] Image tracing.
Expand Down Expand Up @@ -49,7 +49,7 @@ docker compose up -d
```

This will spin up a lightweight version of the stack with Postgres, app-server, and frontend. This is good for a quickstart
or for lightweight usage.
or for lightweight usage. You can access the UI at http://localhost:3000 in your browser.

For production environment, we recommend using our [managed platform](https://www.lmnr.ai/projects) or `docker compose -f docker-compose-full.yml up -d`.

Expand All @@ -59,7 +59,7 @@ For production environment, we recommend using our [managed platform](https://ww
- rabbitmq – message queue for reliable trace processing
- qdrant – vector database
- semantic-search-service – gRPC service for embedding text and storing/retrieving it from qdrant
- frontend – NextJS frontend and backend
- frontend – Next.js frontend and backend
- python-executor – gRPC service with lightweight Python sandbox that can run arbitrary code.
- postgres – Postgres database for all the application data
- clickhouse – columnar OLAP database for more efficient trace and label analytics
Expand Down
14 changes: 7 additions & 7 deletions frontend/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,20 @@

--radius: 0.5rem; */

--background: 240 0% 6%;
--foreground: 240 8% 95%;
--background: 0 0% 8%;
--foreground: 0 8% 90%;

--card: 240 8% 10%;
--card: 240 4% 12%;
--card-foreground: 240 8% 80%;

--popover: 240 0% 6%;
--popover-foreground: 240 8% 80%;
--popover: 0 0% 8%;
--popover-foreground: 0 8% 90%;

--primary: 16 83% 59%;
--primary-foreground: 16 0% 91%;

--secondary: 240 4% 11%;
--secondary-foreground: 240 8% 70%;
--secondary: 240 4% 16%;
--secondary-foreground: 0 4% 70%;

--muted: 240 6% 16%;
--muted-foreground: 215 20.2% 65.1%;
Expand Down
4 changes: 2 additions & 2 deletions frontend/components/ui/code-editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ export default function CodeEditor({
}

return (
<div className={cn('w-full h-full flex flex-col p-2 bg-secondary text-foreground', className)}>
<div className={cn('w-full h-full flex flex-col p-2 bg-card text-foreground', className)}>
<CodeMirror
placeholder={placeholder}
className="border-none bg-secondary"
className="border-none bg-card"
theme={myTheme}
extensions={extensions}
editable={editable}
Expand Down