mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-10-09 10:10:11 +08:00
Add Ollama provider, Add vision support to Openai
This commit is contained in:
21
g4f/cli.py
21
g4f/cli.py
@@ -11,6 +11,10 @@ def main():
|
||||
api_parser = subparsers.add_parser("api")
|
||||
api_parser.add_argument("--bind", default="0.0.0.0:1337", help="The bind string.")
|
||||
api_parser.add_argument("--debug", action="store_true", help="Enable verbose logging.")
|
||||
api_parser.add_argument("--model", default=None, help="Default model for chat completion. (incompatible with --debug and --workers)")
|
||||
api_parser.add_argument("--provider", choices=[provider.__name__ for provider in Provider.__providers__ if provider.working],
|
||||
default=None, help="Default provider for chat completion. (incompatible with --debug and --workers)")
|
||||
api_parser.add_argument("--proxy", default=None, help="Default used proxy.")
|
||||
api_parser.add_argument("--workers", type=int, default=None, help="Number of workers.")
|
||||
api_parser.add_argument("--disable-colors", action="store_true", help="Don't use colors.")
|
||||
api_parser.add_argument("--ignore-cookie-files", action="store_true", help="Don't read .har and cookie files.")
|
||||
@@ -31,14 +35,15 @@ def main():
|
||||
def run_api_args(args):
|
||||
from g4f.api import AppConfig, run_api
|
||||
|
||||
AppConfig.set_ignore_cookie_files(
|
||||
args.ignore_cookie_files
|
||||
)
|
||||
AppConfig.set_list_ignored_providers(
|
||||
args.ignored_providers
|
||||
)
|
||||
AppConfig.set_g4f_api_key(
|
||||
args.g4f_api_key
|
||||
AppConfig.set_config(
|
||||
ignore_cookie_files=args.ignore_cookie_files,
|
||||
ignored_providers=args.ignored_providers,
|
||||
g4f_api_key=args.g4f_api_key,
|
||||
defaults={
|
||||
"model": args.model,
|
||||
"provider": args.provider,
|
||||
"proxy": args.proxy
|
||||
}
|
||||
)
|
||||
run_api(
|
||||
bind=args.bind,
|
||||
|
Reference in New Issue
Block a user