mirror of
https://github.com/EthanMarti/infio-copilot.git
synced 2026-01-16 16:31:56 +00:00
update api text inpu is password
This commit is contained in:
parent
1e85149660
commit
be5b7455b5
@ -111,7 +111,6 @@ export async function regexSearchFiles(
|
||||
let output: string
|
||||
try {
|
||||
output = await execRipgrep(rgPath, args)
|
||||
console.log("output", output)
|
||||
} catch (error) {
|
||||
console.error("Error executing ripgrep:", error)
|
||||
return "No results found"
|
||||
@ -161,9 +160,6 @@ export async function regexSearchFiles(
|
||||
results.push(currentResult as SearchResult)
|
||||
}
|
||||
|
||||
console.log("results", results)
|
||||
console.log("currentResult", currentResult)
|
||||
|
||||
return formatResults(results, directoryPath)
|
||||
}
|
||||
|
||||
|
||||
@ -116,16 +116,20 @@ export class InfioSettingTab extends PluginSettingTab {
|
||||
a.setAttr('rel', 'noopener');
|
||||
}))
|
||||
.setClass('setting-item-heading-smaller')
|
||||
.addText((text) =>
|
||||
text
|
||||
.addText((text) => {
|
||||
const t = text
|
||||
.setValue(this.plugin.settings.serperApiKey)
|
||||
.onChange(async (value) => {
|
||||
await this.plugin.setSettings({
|
||||
...this.plugin.settings,
|
||||
serperApiKey: value,
|
||||
})
|
||||
}),
|
||||
)
|
||||
});
|
||||
if (t.inputEl) {
|
||||
t.inputEl.type = "password";
|
||||
}
|
||||
return t;
|
||||
})
|
||||
|
||||
new Setting(containerEl)
|
||||
.setName('Jina API key (Optional)')
|
||||
@ -139,16 +143,20 @@ export class InfioSettingTab extends PluginSettingTab {
|
||||
a.setAttr('rel', 'noopener');
|
||||
}))
|
||||
.setClass('setting-item-heading-smaller')
|
||||
.addText((text) =>
|
||||
text
|
||||
.addText((text) => {
|
||||
const t = text
|
||||
.setValue(this.plugin.settings.jinaApiKey)
|
||||
.onChange(async (value) => {
|
||||
await this.plugin.setSettings({
|
||||
...this.plugin.settings,
|
||||
jinaApiKey: value,
|
||||
})
|
||||
}),
|
||||
)
|
||||
});
|
||||
if (t.inputEl) {
|
||||
t.inputEl.type = "password";
|
||||
}
|
||||
return t;
|
||||
})
|
||||
}
|
||||
|
||||
renderRAGSection(containerEl: HTMLElement): void {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user