Pharos-ai
Meridian
Available on FriendliAI
Run this model inference on single tenant GPU with unmatched speed and reliability at scale.
Model Details
Model Provider
Pharos-ai
Model Tree
Input Modalities
Output Modalities
Supported Functionality
GLM-5.3 is live. Run Z.ai's latest model on Friendli Model APIs. Try it today ➜
Pharos-ai
Available on FriendliAI
Run this model inference on single tenant GPU with unmatched speed and reliability at scale.
Model Details
Model Provider
Pharos-ai
Model Tree
Input Modalities
Output Modalities
Supported Functionality
For questions that need fresh or grounded information, Meridian can emit tool calls like:
xml
<call>{"tool":"browser.search","input":{"query":"latest OpenAI ChatGPT model announcement"}}</call>
After your app executes the tool and returns source text, Meridian is expected to answer with citations:
xml
<response>OpenAI announced GPT-5.2 as a newer frontier model for ChatGPT and API users, highlighting stronger reasoning, long-context understanding, coding, and vision capabilities. [source:1]</response>
Your app is responsible for actually running the tools. The model only decides when and how to call them.
<call>...</call> blocks.<response>.Example source block:
xml
<tool_result>{"source_id":1,"title":"Example article","url":"https://example.com","text":"Relevant page text..."}</tool_result>
A good system prompt is direct and tool-aware:
text
You are Meridian, a source-grounded research assistant.Use browser.search when current or factual information is needed.Use browser.open to read promising sources.Answer concisely and cite sources inline as [source:1], [source:2].If sources do not support a claim, say so.Do not invent citations.
Meridian should be used with source validation in your application. For best results:
This repository contains a merged Transformers model. Load it with transformers:
python
from transformers import AutoModelForCausalLM, AutoTokenizermodel_id = "Pharos-ai/Meridian"tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)model = AutoModelForCausalLM.from_pretrained(model_id,torch_dtype="auto",device_map="auto",trust_remote_code=True,)
For production use, connect Meridian to your own search, browser, and retrieval tools.