* wip: openai proxy and other ai proxy integration * fixing migration script * wip: support different ai provider in front, fix proxy openai * wip: adding frontend ai provider * updated copilot types * wip: working on anthropic integration * done AI proxy front * adding new type and support for anthropic * updating gitignore * adding streaming response * added streaming prompt * push lib/gen * wip: fixing anthropic * anthropic fully supported * fix backend missing var error and fully support stream event for anthropic * remove gen directory * fixing openapi file * add support for mistral, and update create workspace components * remove deref.json * remove package-json * openapi * fix ui enable code * added utility function for init workspace ai provider * fix workspace switch bug * update anthropic property and fixed frontend error * fix workspace settings * update error message and fix typo migration file * chore: update openapi file * fix dev file * add .sqlx * all * update sqlx --------- Co-authored-by: dieriba <t.dieriba@gmail.com> Co-authored-by: Ruben Fiszel <ruben@windmill.dev> Co-authored-by: Ruben Fiszel <ruben@rubenfiszel.com>
227 lines
5.6 KiB
Svelte
227 lines
5.6 KiB
Svelte
<script lang="ts">
|
|
import { base } from '$lib/base'
|
|
import { Button } from '../common'
|
|
|
|
import { SUPPORTED_LANGUAGES, copilot, type AiProviderTypes } from './lib'
|
|
import type { SupportedLanguage } from '$lib/common'
|
|
import { sendUserToast } from '$lib/toast'
|
|
import type Editor from '../Editor.svelte'
|
|
import { dbSchemas, copilotInfo, type DBSchema, workspaceStore } from '$lib/stores'
|
|
import type DiffEditor from '../DiffEditor.svelte'
|
|
import { scriptLangToEditorLang } from '$lib/scripts'
|
|
import Popover from '../Popover.svelte'
|
|
import Popup from '../common/popup/Popup.svelte'
|
|
import { writable } from 'svelte/store'
|
|
import { sleep } from '$lib/utils'
|
|
import { WindmillIcon } from '../icons'
|
|
import HighlightCode from '../HighlightCode.svelte'
|
|
import LoadingIcon from '../apps/svelte-select/lib/LoadingIcon.svelte'
|
|
import { autoPlacement } from '@floating-ui/core'
|
|
import { Check, Wand2, X } from 'lucide-svelte'
|
|
|
|
// props
|
|
export let lang: SupportedLanguage
|
|
export let editor: Editor | undefined
|
|
export let diffEditor: DiffEditor | undefined
|
|
export let error: string
|
|
export let args: Record<string, any>
|
|
|
|
// state
|
|
let genLoading: boolean = false
|
|
let generatedCode = writable<string>('')
|
|
let generatedExplanation = writable<string>('')
|
|
let dbSchema: DBSchema | undefined = undefined
|
|
let abortController: AbortController | undefined = undefined
|
|
|
|
async function onFix(closePopup: () => void) {
|
|
if (!error) {
|
|
return
|
|
}
|
|
try {
|
|
genLoading = true
|
|
abortController = new AbortController()
|
|
const aiProvider = $copilotInfo.ai_provider as AiProviderTypes
|
|
await copilot(
|
|
{
|
|
language: lang,
|
|
code: editor?.getCode() || '',
|
|
error,
|
|
dbSchema: dbSchema,
|
|
type: 'fix',
|
|
workspace: $workspaceStore!
|
|
},
|
|
generatedCode,
|
|
abortController,
|
|
aiProvider,
|
|
generatedExplanation,
|
|
)
|
|
setupDiff()
|
|
diffEditor?.setModified($generatedCode)
|
|
await sleep(500)
|
|
closePopup()
|
|
await sleep(300)
|
|
showDiff()
|
|
} catch (err) {
|
|
if (!abortController?.signal.aborted) {
|
|
if (err?.message) {
|
|
sendUserToast('Failed to generate code: ' + err.message, true)
|
|
} else {
|
|
sendUserToast('Failed to generate code', true)
|
|
console.error(err)
|
|
}
|
|
}
|
|
closePopup()
|
|
} finally {
|
|
genLoading = false
|
|
}
|
|
}
|
|
|
|
function acceptDiff() {
|
|
editor?.setCode(diffEditor?.getModified() || '')
|
|
editor?.format()
|
|
clear()
|
|
}
|
|
|
|
function rejectDiff() {
|
|
clear()
|
|
}
|
|
|
|
function setupDiff() {
|
|
diffEditor?.setupModel(scriptLangToEditorLang(lang))
|
|
diffEditor?.setOriginal(editor?.getCode() || '')
|
|
}
|
|
|
|
function showDiff() {
|
|
diffEditor?.show()
|
|
editor?.hide()
|
|
}
|
|
|
|
function hideDiff() {
|
|
editor?.show()
|
|
diffEditor?.hide()
|
|
}
|
|
|
|
function clear() {
|
|
$generatedCode = ''
|
|
$generatedExplanation = ''
|
|
}
|
|
|
|
$: lang && clear()
|
|
|
|
$: !$generatedCode && hideDiff()
|
|
|
|
function updateSchema(lang, args) {
|
|
const schemaRes = lang === 'graphql' ? args.api : args.database
|
|
if (typeof schemaRes === 'string') {
|
|
dbSchema = $dbSchemas[schemaRes.replace('$res:', '')]
|
|
}
|
|
}
|
|
$: updateSchema(lang, args)
|
|
</script>
|
|
|
|
{#if SUPPORTED_LANGUAGES.has(lang)}
|
|
<div>
|
|
{#if !genLoading && $generatedCode.length > 0}
|
|
<div class="flex gap-1">
|
|
<Button
|
|
title="Discard generated code"
|
|
size="xs"
|
|
color="red"
|
|
spacingSize="xs2"
|
|
on:click={rejectDiff}
|
|
variant="contained"
|
|
startIcon={{ icon: X }}
|
|
>
|
|
Discard
|
|
</Button><Button
|
|
title="Accept generated code"
|
|
size="xs"
|
|
color="green"
|
|
spacingSize="xs2"
|
|
on:click={acceptDiff}
|
|
startIcon={{ icon: Check }}
|
|
>
|
|
Accept
|
|
</Button>
|
|
{#if $generatedExplanation.length > 0}
|
|
<Popover>
|
|
<svelte:fragment slot="text">{$generatedExplanation}</svelte:fragment>
|
|
<Button size="xs" color="light" variant="contained" spacingSize="xs2">Explain</Button>
|
|
</Popover>
|
|
{/if}
|
|
</div>
|
|
{:else}
|
|
<Popup
|
|
floatingConfig={{
|
|
middleware: [
|
|
autoPlacement({
|
|
allowedPlacements: ['bottom-end', 'top-end']
|
|
})
|
|
]
|
|
}}
|
|
let:close
|
|
>
|
|
<svelte:fragment slot="button">
|
|
<Button
|
|
title="Fix code"
|
|
size="xs"
|
|
color={genLoading ? 'red' : 'light'}
|
|
spacingSize="xs2"
|
|
startIcon={genLoading ? undefined : { icon: Wand2 }}
|
|
nonCaptureEvent={!genLoading}
|
|
on:click={genLoading ? () => abortController?.abort() : undefined}
|
|
btnClasses={genLoading
|
|
? ''
|
|
: 'text-violet-800 dark:text-violet-400 bg-violet-100 dark:bg-gray-700'}
|
|
>{#if genLoading}
|
|
<WindmillIcon
|
|
white
|
|
class="mr-1 text-white"
|
|
height="16px"
|
|
width="20px"
|
|
spin="veryfast"
|
|
/>
|
|
Stop
|
|
{:else}
|
|
AI Fix
|
|
{/if}
|
|
</Button>
|
|
</svelte:fragment>
|
|
{@const fixAction = (_) => {
|
|
if ($copilotInfo.exists_ai_resource) {
|
|
onFix(() => close(null))
|
|
}
|
|
}}
|
|
<div use:fixAction>
|
|
{#if $copilotInfo.exists_ai_resource}
|
|
<div class="w-[42rem] min-h-[3rem] max-h-[34rem] overflow-y-scroll">
|
|
{#if $generatedCode.length > 0}
|
|
<div class="overflow-x-scroll">
|
|
<HighlightCode language={lang} code={$generatedCode} />
|
|
</div>
|
|
{#if $generatedExplanation.length > 0}
|
|
<p class="text-sm mt-2"
|
|
><span class="font-bold">Explanation:</span> {$generatedExplanation}</p
|
|
>
|
|
{/if}
|
|
{:else}
|
|
<LoadingIcon />
|
|
{/if}
|
|
</div>
|
|
{:else}
|
|
<div class="w-80">
|
|
<p class="text-sm"
|
|
>Enable Windmill AI in the <a
|
|
class="inline-flex flex-row items-center gap-1"
|
|
href="{base}/workspace_settings?tab=ai"
|
|
target="_blank">workspace settings</a
|
|
></p
|
|
></div
|
|
>
|
|
{/if}
|
|
</div>
|
|
</Popup>
|
|
{/if}
|
|
</div>
|
|
{/if}
|