-
Notifications
You must be signed in to change notification settings - Fork 28
Lot's of agent stuff again #343
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
Open
satti-hari-krishna-reddy
wants to merge
20
commits into
Shuffle:main
Choose a base branch
from
satti-hari-krishna-reddy:timeout-fix
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+192
−108
Open
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
dca3acb
add http app
satti-hari-krishna-reddy 55e6a27
fix agent stuck loading due to timeout
satti-hari-krishna-reddy 1d7c968
added auth injection for other internal apps as well
satti-hari-krishna-reddy db9f83b
include more conditions
satti-hari-krishna-reddy 8a2855c
commented out not used code
satti-hari-krishna-reddy 3acdb25
a ton of changes again
satti-hari-krishna-reddy 04deb5b
undo some changes for now
satti-hari-krishna-reddy 44924c5
increase the TTL terminal statuses
satti-hari-krishna-reddy aa044c1
fixed some abort bugs
satti-hari-krishna-reddy 44c8398
general output format fix
satti-hari-krishna-reddy 26de432
added more visibility in logs
satti-hari-krishna-reddy 9148a37
added trace logs to handleRunDatastoreAutomation
satti-hari-krishna-reddy 943e2e7
using the context instead of modifying function signature
satti-hari-krishna-reddy 117b3f5
use the context for passing caller and trace info
satti-hari-krishna-reddy 1075052
update the call with right params
satti-hari-krishna-reddy e50fef7
commented out for now
satti-hari-krishna-reddy 3275f96
added new alowed headers to cors check
satti-hari-krishna-reddy 1e556f8
code ql fix: added Escape single quotes
satti-hari-krishna-reddy d60c6f9
fix: ensure caller context is set in PrepareSingleAction
satti-hari-krishna-reddy 10cc3c3
fix: replace random trace ID generation with UUID
satti-hari-krishna-reddy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
HandleAiAgentExecutionStart now aborts if ctx is missing a non-empty "caller" value. In this repo, GetContext(request) currently always returns context.Background() (no values), so this change will cause agent starts to abort in normal request flows unless every call site/middleware injects ctx.Value("caller"). Consider making caller optional (log a warning + default), or ensure all entry points populate it (e.g., derive from an HTTP header like X-Internal-Caller, or set it at the immediate call sites).