# Morph: Morph V3 Large — Use via Hanzo AI API
> Morph's high-accuracy apply model for complex code edits. ~4,500 tokens/sec with 98% accuracy for precise code transformations. The model re... Access via Hanzo's OpenAI-compatible API. Context: 262K. Get started free.
[Models](https://hanzo.ai/models)/[Morph](https://hanzo.ai/models/morph)/morph-v3-large
# Morph: Morph V3 Large
[Morph](https://hanzo.ai/models/morph)
Morph's high-accuracy apply model for complex code edits. ~4,500 tokens/sec with 98% accuracy for precise code transformations. The model requires the prompt to be in the following format: {instruction} {initial_code}...
text
[Get API Key](https://hanzo.ai/signup)[View Docs](https://docs.hanzo.ai)[Try in Chat](https://hanzo.ai/chat)
## Specifications
Context Window
262K
Modalities
text
Input
$1.08 / M tokens
Output
$2.28 / M tokens
Status
available
Category
third-party
Model ID
morph/morph-v3-large
## Quick Start
TypeScript
```
import OpenAI from 'openai' const client = new OpenAI({ apiKey: process.env.HANZO_API_KEY, baseURL: 'https://api.hanzo.ai/v1' }) const response = await client.chat.completions.create({ model: 'morph/morph-v3-large', messages: [{ role: 'user', content: 'Hello!' }] }) console.log(response.choices[0].message.content)
```
Python
```
from openai import OpenAI client = OpenAI( api_key=os.environ["HANZO_API_KEY"], base_url="https://api.hanzo.ai/v1" ) response = client.chat.completions.create( model="morph/morph-v3-large", messages=[{"role": "user", "content": "Hello!"}] ) print(response.choices[0].message.content)
```
cURL
```
curl https://api.hanzo.ai/v1/chat/completions \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $HANZO_API_KEY" \ -d '{ "model": "morph/morph-v3-large", "messages": [{"role": "user", "content": "Hello!"}] }'
```
Go
```
package main import ( "context" "fmt" "os" "github.com/sashabaranov/go-openai" ) func main() { cfg := openai.DefaultConfig(os.Getenv("HANZO_API_KEY")) cfg.BaseURL = "https://api.hanzo.ai/v1" client := openai.NewClientWithConfig(cfg) resp, _ := client.CreateChatCompletion(context.Background(), openai.ChatCompletionRequest{ Model: "morph/morph-v3-large", Messages: []openai.ChatCompletionMessage{ {Role: openai.ChatMessageRoleUser, Content: "Hello!"}, }, }, ) fmt.Println(resp.Choices[0].Message.Content) }
```
## More from Morph
[Morph: Morph V3 Fast82KMorph's fastest apply model for code edits. ~10,500 tokens/sec with 96% accuracy for rapid code transformations. The model requires the prompt to be in the following format: {instruction} {initial_code} {edit_snippet}...](https://hanzo.ai/models/morph/morph-v3-fast)
[View all Morph models →](https://hanzo.ai/models/morph)
## Use Morph: Morph V3 Large via Hanzo AI
One API key. Every major model. OpenAI-compatible. Start free.
[Get Free API Key](https://hanzo.ai/signup)[Browse All Models](https://hanzo.ai/models)