peppermenta commited on
Commit
282333c
·
1 Parent(s): 285f1d6

Update readme

Browse files
Files changed (1) hide show
  1. README.md +1 -0
README.md CHANGED
@@ -328,6 +328,7 @@ When running with the `--use_llm` flag, you have a choice of services you can us
328
  - `Google Vertex` - this will use vertex, which can be more reliable. You'll need to pass `--vertex_project_id`. To use it, set `--llm_service=marker.services.vertex.GoogleVertexService`.
329
  - `Ollama` - this will use local models. You can configure `--ollama_base_url` and `--ollama_model`. To use it, set `--llm_service=marker.services.ollama.OllamaService`.
330
  - `Claude` - this will use the anthropic API. You can configure `--claude_api_key`, and `--claude_model_name`. To use it, set `--llm_service=marker.services.claude.ClaudeService`.
 
331
 
332
  These services may have additional optional configuration as well - you can see it by viewing the classes.
333
 
 
328
  - `Google Vertex` - this will use vertex, which can be more reliable. You'll need to pass `--vertex_project_id`. To use it, set `--llm_service=marker.services.vertex.GoogleVertexService`.
329
  - `Ollama` - this will use local models. You can configure `--ollama_base_url` and `--ollama_model`. To use it, set `--llm_service=marker.services.ollama.OllamaService`.
330
  - `Claude` - this will use the anthropic API. You can configure `--claude_api_key`, and `--claude_model_name`. To use it, set `--llm_service=marker.services.claude.ClaudeService`.
331
+ - `OpenAI` - this supports any openai-like endpoint. You can configure `--openai_api_key`, `--openai_model`, and `--openai_base_url`. To use it, set `--llm_service=marker.services.openai.OpenAIService`.
332
 
333
  These services may have additional optional configuration as well - you can see it by viewing the classes.
334