Skip to content

Commit

Permalink
Merge pull request #25 from harmonydata/staging
Browse files Browse the repository at this point in the history
reverted default model to huggingface
  • Loading branch information
ronnyTodgers authored May 31, 2024
2 parents 4a25f0d + 2bdd2b8 commit 1622698
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/contexts/DataContext.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export const useData = () => {
export function DataProvider({ children }) {
const { currentUser } = useAuth();
const [currentModel, setCurrentModel] = React.useState({
framework: "azure_openai",
model: "fds-text-embedding-ada-002",
framework: "huggingface",
model: "sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2",
});
const retryablePostData = ({ url = "", data = {}, timeout = 8000 }) => {
return new Promise(async (resolve, reject) => {
Expand Down

0 comments on commit 1622698

Please sign in to comment.