-
Notifications
You must be signed in to change notification settings - Fork 334
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: IDEFICS models support + Mistral 7B Instruct (#135)
* add [IDEFICS models](https://huggingface.co/blog/idefics), IDEFICS model interface and file upload capability in User Interface * update README with multimodal sample, instructions and warnings. * add [Mistral 7B Instruct](https://huggingface.co/mistralai/Mistral-7B-v0.1) support * remove LLama2 Base model
- Loading branch information
1 parent
8deaf4c
commit 128f861
Showing
76 changed files
with
19,186 additions
and
1,796 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
#!/usr/bin/env node | ||
#!/usr/bin/env node | ||
// You might want to add this to the previous line --experimental-specifier-resolution=node | ||
|
||
import { Command } from 'commander'; | ||
import { LIB_VERSION } from './version.js' | ||
import { Command } from "commander"; | ||
import { LIB_VERSION } from "./version.js"; | ||
|
||
(async () =>{ | ||
let program = new Command(); | ||
program | ||
.version(LIB_VERSION) | ||
.command('create', '📦 creates a new configuration for the a Chatbot') | ||
.command('show','🚚 display the current chatbot configuration') | ||
.command('deploy', '🌟 deploys the chatbot to your account') | ||
.description('🛠️ Easily create a chatbots'); | ||
(async () => { | ||
let program = new Command(); | ||
program | ||
.version(LIB_VERSION) | ||
.command("create", "📦 creates a new configuration for the a Chatbot") | ||
.command("show", "🚚 display the current chatbot configuration") | ||
.command("deploy", "🌟 deploys the chatbot to your account") | ||
.description("🛠️ Easily create a chatbots"); | ||
|
||
program.parse(process.argv); | ||
} )(); | ||
program.parse(process.argv); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.