Skip to content

Commit b3e9c11

Browse files
authored
Merge pull request #954 from liam-hq/devin/1742543457-langfuse-integration
Add Langfuse integration to app
2 parents d29f096 + f3a7ea9 commit b3e9c11

File tree

7 files changed

+243
-7
lines changed

7 files changed

+243
-7
lines changed

.env.template

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ GITHUB_APP_ID=""
33
GITHUB_CLIENT_ID=""
44
GITHUB_CLIENT_SECRET=""
55
GITHUB_PRIVATE_KEY=""
6+
LANGFUSE_BASE_URL="https://cloud.langfuse.com"
7+
LANGFUSE_PUBLIC_KEY=""
8+
LANGFUSE_SECRET_KEY=""
69
MIGRATION_ENABLED=""
710
NEXT_PUBLIC_BASE_URL=""
811
NEXT_PUBLIC_ENV_NAME=""

docs/packages-license.md

+78-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
## Summary
5-
* 1144 MIT
5+
* 1151 MIT
66
* 120 Apache 2.0
77
* 80 ISC
88
* 31 New BSD
@@ -1264,6 +1264,17 @@ LGPL-3.0-or-later permitted
12641264

12651265

12661266

1267+
<a name="@langchain/textsplitters"></a>
1268+
### @langchain/textsplitters v0.1.0
1269+
####
1270+
1271+
##### Paths
1272+
* /home/runner/work/liam/liam
1273+
1274+
<a href="http://opensource.org/licenses/mit-license">MIT</a> permitted
1275+
1276+
1277+
12671278
<a name="@manypkg/find-root"></a>
12681279
### @manypkg/find-root v1.1.0
12691280
####
@@ -9977,6 +9988,17 @@ Public Domain manually approved
99779988

99789989

99799990

9991+
<a name="jsonpointer"></a>
9992+
### jsonpointer v5.0.1
9993+
####
9994+
9995+
##### Paths
9996+
* /home/runner/work/liam/liam
9997+
9998+
<a href="http://opensource.org/licenses/mit-license">MIT</a> permitted
9999+
10000+
10001+
998010002
<a name="jsonwebtoken"></a>
998110003
### jsonwebtoken v9.0.2
998210004
####
@@ -10065,6 +10087,50 @@ Public Domain manually approved
1006510087

1006610088

1006710089

10090+
<a name="langchain"></a>
10091+
### langchain v0.3.19
10092+
####
10093+
10094+
##### Paths
10095+
* /home/runner/work/liam/liam
10096+
10097+
<a href="http://opensource.org/licenses/mit-license">MIT</a> permitted
10098+
10099+
10100+
10101+
<a name="langfuse"></a>
10102+
### langfuse v3.37.0
10103+
####
10104+
10105+
##### Paths
10106+
* /home/runner/work/liam/liam
10107+
10108+
<a href="http://opensource.org/licenses/mit-license">MIT</a> permitted
10109+
10110+
10111+
10112+
<a name="langfuse-core"></a>
10113+
### langfuse-core v3.37.0
10114+
####
10115+
10116+
##### Paths
10117+
* /home/runner/work/liam/liam
10118+
10119+
<a href="http://opensource.org/licenses/mit-license">MIT</a> permitted
10120+
10121+
10122+
10123+
<a name="langfuse-langchain"></a>
10124+
### langfuse-langchain v3.36.0
10125+
####
10126+
10127+
##### Paths
10128+
* /home/runner/work/liam/liam
10129+
10130+
<a href="http://opensource.org/licenses/mit-license">MIT</a> permitted
10131+
10132+
10133+
1006810134
<a name="langsmith"></a>
1006910135
### langsmith v0.3.13
1007010136
####
@@ -11726,6 +11792,17 @@ Public Domain manually approved
1172611792

1172711793

1172811794

11795+
<a name="openapi-types"></a>
11796+
### openapi-types v12.1.3
11797+
####
11798+
11799+
##### Paths
11800+
* /home/runner/work/liam/liam
11801+
11802+
<a href="http://opensource.org/licenses/mit-license">MIT</a> permitted
11803+
11804+
11805+
1172911806
<a name="optionator"></a>
1173011807
### optionator v0.9.4
1173111808
####

frontend/apps/app/lib/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './langfuse'

frontend/apps/app/lib/langfuse.ts

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { CallbackHandler } from 'langfuse-langchain'
2+
3+
export const langfuseLangchainHandler = new CallbackHandler({
4+
publicKey: process.env.LANGFUSE_PUBLIC_KEY,
5+
secretKey: process.env.LANGFUSE_SECRET_KEY,
6+
baseUrl: process.env.LANGFUSE_BASE_URL || 'https://cloud.langfuse.com',
7+
// Setting flushAt to 1 sends events immediately without batching
8+
flushAt: 1,
9+
// Set environment name for Langfuse to track different environments
10+
environment: process.env.NEXT_PUBLIC_ENV_NAME,
11+
})

frontend/apps/app/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"date-fns": "4.1.0",
2121
"dotenv": "16.4.7",
2222
"flags": "3.1.1",
23+
"langfuse-langchain": "3.36.0",
2324
"minimatch": "10.0.1",
2425
"next": "15.2.3",
2526
"react": "18.3.1",

frontend/apps/app/src/functions/processGenerateReview.ts

+15-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { PromptTemplate } from '@langchain/core/prompts'
22
import { ChatOpenAI } from '@langchain/openai'
33
import { prisma } from '@liam-hq/db'
4+
import { langfuseLangchainHandler } from '../../lib'
45
import type { GenerateReviewPayload, ReviewResponse } from '../types'
56

67
const REVIEW_TEMPLATE = `
@@ -35,7 +36,10 @@ export async function processGenerateReview(
3536
})
3637

3738
const docsContent = docs
38-
.map((doc) => `# ${doc.title}\n\n${doc.content}`)
39+
.map(
40+
(doc: { title: string; content: string }) =>
41+
`# ${doc.title}\n\n${doc.content}`,
42+
)
3943
.join('\n\n---\n\n')
4044
const prompt = PromptTemplate.fromTemplate(REVIEW_TEMPLATE)
4145

@@ -45,11 +49,16 @@ export async function processGenerateReview(
4549
})
4650

4751
const chain = prompt.pipe(model)
48-
const response = await chain.invoke({
49-
docsContent,
50-
schemaFiles: payload.schemaFiles,
51-
schemaChanges: payload.schemaChanges,
52-
})
52+
const response = await chain.invoke(
53+
{
54+
docsContent,
55+
schemaFiles: payload.schemaFiles,
56+
schemaChanges: payload.schemaChanges,
57+
},
58+
{
59+
callbacks: [langfuseLangchainHandler],
60+
},
61+
)
5362

5463
return response.content.toString()
5564
} catch (error) {

pnpm-lock.yaml

+134
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)