Skip to content
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

refactor: change default model to claude, minor cleanups #149

Merged
merged 1 commit into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lib/components/NavBar.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import EnvelopeIcon from "$lib/icons/EnvelopeIcon.svelte"
import GithubIcon from "$lib/icons/GithubIcon.svelte"
import { AppBar, getDrawerStore, LightSwitch } from "@skeletonlabs/skeleton"
import { AppBar, getDrawerStore } from "@skeletonlabs/skeleton"

const drawerStore = getDrawerStore()

Expand Down
3 changes: 0 additions & 3 deletions src/lib/server/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,4 @@ export const POSTGRES_PORT = Number(env.POSTGRES_PORT)
export const AZURE_FUNCTION_PYTHON_URL = env.AZURE_FUNCTION_PYTHON_URL
export const AZURE_FUNCTION_PYTHON_KEY = env.AZURE_FUNCTION_PYTHON_KEY

export const AZURE_BLOB_ACCOUNT_NAME = env.AZURE_BLOB_ACCOUNT_NAME
export const AZURE_BLOB_SAS = env.AZURE_BLOB_SAS

export const DEVELOPMENT_USER = env.DEVELOPMENT_USER
2 changes: 1 addition & 1 deletion src/routes/intake/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
let isLoading = false
let modalOpen = false
let redcapIdentifierImage: HTMLImageElement
let model = "gpt-4o"
let model = "anthropic.claude-3-5-sonnet-20240620-v1:0"

const toastStore = getToastStore()
const modalStore = getModalStore()
Expand Down
2 changes: 1 addition & 1 deletion src/routes/summarization/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

let file: FileList
let loading = false
let model = LLM_MODELS[0].tag
let model = "anthropic.claude-3-5-sonnet-20240620-v1:0"

const toastStore = getToastStore()

Expand Down
Loading