Skip to content

Commit

Permalink
Merge pull request #111 from lmnr-ai/dev
Browse files Browse the repository at this point in the history
Readme fixes and global colors
  • Loading branch information
dinmukhamedm authored Oct 30, 2024
2 parents f6f4d49 + 1d70768 commit 034c95d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
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

0 comments on commit 034c95d

Please sign in to comment.