-
Notifications
You must be signed in to change notification settings - Fork 2
Chat GPT Deep research #44
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
Conversation
🎉 Snyk checks have passed. No issues have been found so far.✅ security/snyk check is complete. No issues have been found. (View Details) ✅ license/snyk check is complete. No issues have been found. (View Details) |
66e3647
to
1cd2551
Compare
const { id } = fetchInputSchema.parse(request.params.arguments); | ||
// id is of the form "<datasource-id>:<question>" | ||
const [datasourceId, question] = id.split(":"); | ||
const answer = await this.getThoughtSpotService().getAnswerForQuestion(question, datasourceId, false); |
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.
no create liveboard?
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.
No, chatgpt does not seem to support anything beyond search
and fetch
} catch (error) { | ||
span?.setStatus({ code: SpanStatusCode.ERROR, message: (error as Error).message }); | ||
console.error("Error getting relevant questions: ", error, "sourceIds: ", sourceIds, "instanceUrl: ", (this.client as any).instanceUrl); | ||
console.error("Error getting relevant questions: ", "sourceIds: ", sourceIds, "instanceUrl: ", (this.client as any).instanceUrl, "error: ", error); |
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.
nit: extra comma
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 dont see extra comma, am I missing something?
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.
console.error("Error getting relevant questions: ", "sourceIds: "
declare namespace Cloudflare { | ||
interface Env { | ||
OAUTH_KV: KVNamespace; | ||
HONEYCOMB_API_KEY: string; |
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.
any reason for removing this?
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.
This is autogen code, seems this is missing in the wrangler.jsonc
6097bfd
to
dadf1e8
Compare
No description provided.