-
Notifications
You must be signed in to change notification settings - Fork 254
supporting blog content langgraph-js-elasticsearch #494
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
supporting blog content langgraph-js-elasticsearch #494
Conversation
|
Review these changes at https://app.gitnotebooks.com/elastic/elasticsearch-labs/pull/494 |
|
@llermaly is this coming from a fork? If so the PR checks won't pass. It will need to come from a branch. |
|
Can you add a README file to the folder explaining how to install and run the code? |
|
Hi @carlyrichmond! Added the README file! Regarding the pull request: we’ve always opened PRs from a fork, and I created a new branch there specifically for this content. I’m not sure if there’s a new way to handle contributions, if that’s the case, please let me know. Thanks! |
| } | ||
|
|
||
| // Node 4: Visualize results | ||
| async function visualizeResults(state: typeof VCState.State) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would say the term visualize here is misleading as you're not presenting the data on a chart or anything. Perhaps formatResults would make more sense?
| }; | ||
| } | ||
|
|
||
| async function saveGraphImage(app: any): Promise<void> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would add a comment explaining what this function does.
| const query = | ||
| "Find startups with Series A or Series B funding between $8M-$25M and monthly revenue above $500K"; | ||
|
|
||
| // Market-focused query (emphasizes industry, geography, market positioning) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you have both uncommented and then run them one after the other and show the results? I always find commented code in examples to be really untidy.
No description provided.