Skip to content

Commit

Permalink
Merge branch 'main' into marc/gtm-630
Browse files Browse the repository at this point in the history
  • Loading branch information
marcklingen authored Nov 5, 2024
2 parents 3f1d0b7 + 6c34d1f commit 9d8907c
Show file tree
Hide file tree
Showing 74 changed files with 9,860 additions and 6,556 deletions.
2 changes: 1 addition & 1 deletion components/changelog/ChangelogIndex.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const ChangelogIndex = ({
{pageNumbers.map((pageNumber, index) =>
pageNumber === null ? (
<PaginationItem key={`ellipsis-${index}`}>
<PaginationEllipsis size="sm" />
<PaginationEllipsis />
</PaginationItem>
) : (
<PaginationItem key={pageNumber}>
Expand Down
12 changes: 6 additions & 6 deletions components/gh-discussions/GhDiscussionsPreviewInternal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const GhDiscussionsPreviewInternal = ({
{displayedDiscussions.map((discussion) => (
<li
key={discussion.number}
className="flex items-center space-x-1 pb-3 border-b last:border-none"
className="flex items-center space-x-1 pb-3 border-b last:border-none px-1"
>
<div className="flex flex-col items-center min-w-[60px] gap-0.5">
<span className="text-lg font-semibold leading-none">
Expand All @@ -125,20 +125,20 @@ const GhDiscussionsPreviewInternal = ({
<div className="flex flex-col items-start">
<Link
href={discussion.href}
className="text-primary hover:underline font-medium text-sm leading-none"
className="text-primary hover:underline font-medium text-sm leading-none text-balance"
target="_blank"
rel="noopener noreferrer"
>
{discussion.title}
</Link>
<div className="text-xs text-primary/70 mt-1.5 flex items-center">
<div className="text-xs text-primary/70 mt-1.5 flex items-center flex-wrap gap-1">
<span>{discussion.author.login}</span>
<span className="mx-1.5"></span>
<span></span>
<span>
{new Date(discussion.created_at).toLocaleDateString()}
</span>

<span className="mx-1.5"></span>
<span></span>
<div className="inline-flex items-center gap-1">
<span
className={`h-4 inline-flex items-center gap-1 px-1.5 rounded-full text-xs bg-gray-100 dark:bg-gray-800 text-primary/70 dark:text-gray-200`}
Expand Down Expand Up @@ -200,7 +200,7 @@ const GhDiscussionsPreviewInternal = ({
{pageNumbers.map((pageNumber, index) =>
pageNumber === null ? (
<PaginationItem key={`ellipsis-${index}`}>
<PaginationEllipsis size="xs" />
<PaginationEllipsis />
</PaginationItem>
) : (
<PaginationItem key={pageNumber}>
Expand Down
2 changes: 1 addition & 1 deletion components/home/FeatAnalytics.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const features = [
{
name: "Quality.",
description:
"Add scores to each trace. Can be model-based evaluation, user feedback, or manual labeling in the Langfuse UI.",
"Add scores to each trace. Langfuse supports LLM-as-a-judge evaluators, user feedback, or human annotation in the Langfuse UI.",
icon: Check,
},
{
Expand Down
6 changes: 3 additions & 3 deletions components/home/Usage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ const users: User[] = [
];

const stats = [
{ name: "SDK installs / month", value: 2000000 },
{ name: "GitHub stars", value: 5000 },
{ name: "Docker pulls", value: 500000 },
{ name: "SDK installs / month", value: 3_000_000 },
{ name: "GitHub stars", value: 6_000 },
{ name: "Docker pulls", value: 1_800_000 },
];

export const Usage = () => (
Expand Down
32 changes: 11 additions & 21 deletions components/home/img/pigment_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 12 additions & 15 deletions components/home/img/pigment_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 1 addition & 2 deletions components/logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function Logo() {
return (
<>
<div
className="flex gap-2 items-center cursor-pointer"
className="flex gap-2 items-center cursor-pointer -mr-4 md:-mr-0"
onContextMenu={(e) => {
e.preventDefault();
setMenuOpen(true);
Expand All @@ -33,7 +33,6 @@ export function Logo() {
/>
<style jsx>{`
div {
padding: 0.5rem 0.5rem 0.5rem 0;
mask-image: linear-gradient(
60deg,
#bba0ff 25%,
Expand Down
2 changes: 1 addition & 1 deletion cookbook/integration_dspy.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"\n",
"Langfuse can help with running DSPy projects by providing a centralized observability platform for debugging and monitoring.\n",
"\n",
"**Note**: This is a community contributed integration ([initial PR](https://github.com/stanfordnlp/dspy/pull/1186) by [@xucailiang](https://github.com/xucailiang)). DSPy documentation covering the integration can be found [here](https://dspy-docs.vercel.app/api/language_model_clients/langfuse). If you encounter issues or want to contribute to the integration, please open an issue or PR.\n",
"**Note**: This is a community contributed integration ([initial PR](https://github.com/stanfordnlp/dspy/pull/1186) by [@xucailiang](https://github.com/xucailiang)). DSPy documentation can be found [here](https://dspy-docs.vercel.app/intro/). If you encounter issues or want to contribute to the integration, please open an issue or PR.\n",
"\n",
"---\n",
"\n",
Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"dependencies": {
"@calcom/embed-react": "^1.5.1",
"@headlessui/react": "^2.1.10",
"@hookform/resolvers": "^3.9.0",
"@hookform/resolvers": "^3.9.1",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
Expand All @@ -25,37 +25,37 @@
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@supabase/supabase-js": "^2.45.4",
"@supabase/supabase-js": "^2.45.6",
"@tanstack/react-table": "^8.20.5",
"@vercel/og": "^0.6.3",
"@vercel/speed-insights": "^1.0.12",
"@vercel/speed-insights": "^1.0.14",
"@vidstack/react": "^0.6.15",
"ai": "^3.4.9",
"ai": "^3.4.30",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.11.8",
"framer-motion": "^11.11.11",
"geist": "^1.3.1",
"gpt3-tokenizer": "^1.1.5",
"langfuse": "^3.27.0",
"langfuse": "^3.28.0",
"lucide-react": "^0.451.0",
"next": "^14.2.15",
"next-sitemap": "^4.2.3",
"nextra": "^3.0.11",
"nextra-theme-docs": "^3.0.11",
"nextra": "^3.0.15",
"nextra-theme-docs": "^3.0.15",
"openai-edge": "^1.2.2",
"postcss": "^8.4.47",
"posthog-js": "^1.167.0",
"posthog-js": "^1.176.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-hook-form": "^7.53.1",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"react-tweet": "^3.2.1",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"tailwind-merge": "^2.5.3",
"tailwindcss": "^3.4.13",
"tailwind-merge": "^2.5.4",
"tailwindcss": "^3.4.14",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
Expand Down
2 changes: 1 addition & 1 deletion pages/about.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Learn more about [why we started Langfuse](/blog/announcing-our-seed-round) and
- Max Deichmann, [@maxdeichmann](https://x.com/maxdeichmann), [GitHub](https://github.com/maxdeichmann), [Linkedin](https://www.linkedin.com/in/maxdeichmann/)
- Hassieb Pakzad, [@hassiebpakzad](https://x.com/hassiebpakzad), [GitHub](https://github.com/hassiebp), [LinkedIn](https://www.linkedin.com/in/hassieb/)
- Steffen Schmitz, [GitHub](https://github.com/Steffen911), [LinkedIn](https://www.linkedin.com/in/steffenschmitz/)
- Jannik Maierhoefer, [@MaierhoeferM](https://x.com/MaierhoeferM), [GitHub](https://github.com/jannikmaierhoefer), [LinkedIn](https://www.linkedin.com/in/maierhoefer/)
- Jannik Maierhöfer, [@JMaierhoefer](https://x.com/JMaierhoefer), [GitHub](https://github.com/jannikmaierhoefer), [LinkedIn](https://www.linkedin.com/in/maierhoefer/)

## Backed by

Expand Down
Loading

0 comments on commit 9d8907c

Please sign in to comment.