惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园_首页
博客园 - 司徒正美
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Hugging Face - Blog
Hugging Face - Blog
B
Blog RSS Feed
阮一峰的网络日志
阮一峰的网络日志
D
DataBreaches.Net
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
L
LangChain Blog
T
The Blog of Author Tim Ferriss
博客园 - 【当耐特】
Engineering at Meta
Engineering at Meta
Google DeepMind News
Google DeepMind News
雷峰网
雷峰网
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ

Oxen.ai

WAN 3.0 Prompting Guide Speeding up the Oxen.ai File System MiniMax H3: Open Weights & Prompting Techniques Complete Guide. Seedance 2.5, MiniMax H3, FLUX 3, and WAN 3 are now live on Oxen! Oxen's Model Report - July 23rd, 2026 The Ultimate Guide to Topaz Upscaling Video Models: Proteus, Starlight, Wonder, and Hyperion Everything new in Oxen.ai - July 7th, 2026 Oxen.ai vs Higgsfield: pay-as-you-go AI video and image models Oxen.ai vs Magnific (FreePik): which AI creative platform should you use? Oxen's Model Report - May 8th, 2026 Writing a fine-tuning and deployment pipeline isn't as easy as it looks (Gemma 4 Version) Oxen's Model Report - April 9th, 2026 When to Fine-Tune an Image Model Oxen's Model Report - March 11th, 2026 Frank's Red Hot Isometric.nyc Bell Canada Oxen's Model Report How a $1 Qwen3-VL Fine-Tune Beat Gemini 3 How to Train a LTX-2 Character LoRA with Oxen.ai How to Use WAN 2.1-VACE to Generate Hollywood-Level Video Edits How We Cut Inference Costs from $46K to $6.5K Fine-Tuning Qwen-Image-Edit How to Set Noise Timesteps When Fine-Tuning Diffusion Models for Image Generation Fine-Tuned Qwen-Image-Edit vs Nano-Banana and FLUX Kontext Dev
Run DeepSeek, Kimi, and GLM in Your Terminal with oh-my-p...
Greg Schoeninger · 2026-09-12 · via Oxen.ai

It seems like every day on X there is a post about a new model overtaking Claude or GPT. The belle of the ball this week was DeepSeek V4.1 Flash which is ~97% cheaper than GPT 5.6 Sol. Models like GLM 5.3 and Kimi K3 have also entered the arena as work horses (or work oxen?) as of late.

But where and how do you try all these shiny new models? And why?

The why is easy. Price and speed. Models like Deepseek can be your implementation power houses, saving you tokens. A nice workflow I have seen is to use Claude or GPT to come up with a plan, then point Deepseek to that plan to do the raw implementation - faster and cheaper.

Where can you try them? Well you need a harness. And an API. And that's where Oh-My-Pi and Oxen.ai come in.

Oh-My-Pi 🤝 Oxen.ai

Oh-My-Pi or omp is an incredible and fun open source harness you can run on the command line. If you want a user interface - this post is not for you. If you are a Claude Code or Codex fan from the terminal, welcome to the light side.

Here is the github repository for the harness itself:

GitHub - can1357/oh-my-pi: ⌥ Coding agent with the IDE wired in

⌥ Coding agent with the IDE wired in. Contribute to can1357/oh-my-pi development by creating an account on GitHub.

can1357

To install it, simply use:

curl -fsSL https://omp.sh/install | sh

Once you have it installed, you will need to connect it to some models. Oxen.ai has access to all the latest closed and open source models via the same API. The APIs are all OpenAI compatible, so they are easy to swap into any tool that already supports OpenAI or OpenRouter.

Add the following provider to ~/.omp/agent/models.yml. If the file already contains a providers mapping, merge oxenai into it. Replace YOUR_API_KEY with your Oxen API key.

providers:
  oxenai:
    baseUrl: https://hub.oxen.ai/api/ai
    api: openai-completions
    apiKey: YOUR_API_KEY
    models:
      - id: deepseek-v4-1-flash
        name: DeepSeek V4.1 Flash
        reasoning: true
        input: [text, image]
        contextWindow: 1048576
        maxTokens: 384000
        cost:
          input: 0.39
          output: 1.56
          cacheRead: 0
          cacheWrite: 0

      - id: deepseek-v4-pro
        name: DeepSeek V4 Pro
        reasoning: true
        input: [text]
        contextWindow: 1048576
        maxTokens: 384000
        cost:
          input: 1.15
          output: 2.25
          cacheRead: 0
          cacheWrite: 0

      - id: kimi-k3
        name: Kimi K3
        reasoning: true
        input: [text, image]
        contextWindow: 1048576
        maxTokens: 1048576
        cost:
          input: 3
          output: 15
          cacheRead: 0
          cacheWrite: 0

      - id: zai-org-glm-5-3
        name: GLM 5.3
        reasoning: true
        input: [text]
        contextWindow: 1048576
        maxTokens: 131072
        cost:
          input: 1.82
          output: 5.72
          cacheRead: 0
          cacheWrite: 0

Once you have the initial pattern down, and one or two models integrated, you can always ask just ask any of the models to update the ~/.omp/agent/models.yml file and add new models itself by getting the information from the Oxen API:

curl -fsSL https://hub.oxen.ai/api/ai/models

Oxen returns token prices per token. Multiply by 1,000,000 for the config’s cost.input and cost.output values. For example, DeepSeek’s input price of 0.00000009 becomes 0.09 dollars per million tokens.

To see what models you have available via oxenai you can then run:

omp models oxenai

To run a specific model, simply run:

omp --model oxenai/deepseek-v4-1-flash

And you are off to the races! Happy hacking 🤓 🐂

PS: If you want free credits...just email us your use case at hello@oxen.ai. We're a friendly bunch, come say hello.