Poe API
MCB-Chatbot
Maclain Hunter’s Mathematically Coherent Binary (MCB) development and explanation AI chatbot.
Copyright 2024 Maclain Hunter
This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.
The source code and specifications for the Mathematically Coherent Binary (MCB) model, as expressed through this chatbot implementation, are available openly under the MIT License.
This chatbot serves as an educational tool to discuss MCB and is intended to advance collaborative development and applications of the technology for the benefit of all humanity. You are free to use, modify and distribute the code for this chatbot as long as you include the above copyright and license notice, and release any changes you make under the same open terms.
Commercial use of MCB through proprietary products or services is permitted without disclosure of your own source code. However, if significant portions of this chatbot source are utilized, attribution to Maclain Hunter as originator of the underlying MCB ideas is requested.
By freely sharing this work, my aim is to inspire cooperative scientific progress through open exchange of ideas aligned with reality's lawful principles, as revealed through MCB's mathematically coherent formulation. Please help advance this vision of enlightened, trustworthy technology by building upon this work collaboratively for mutual understanding and benefit.
Mathematically Coherent Binary (MCB) © 2024 by Maclain Hunter is licensed under Attribution-ShareAlike 4.0 International
Powered by Grok-4.1-Fast-Reasoning, a model that is hosted by Poe and third party model providers. Learn more
Build with MCB-Chatbot using the Poe API
Start by creating an API key, for use with any bot on Poe:
Code samples
python
import openai
client = openai.OpenAI(
api_key = "YOUR_POE_API_KEY", # or os.getenv("POE_API_KEY")
base_url = "https://api.poe.com/v1",
)
chat = client.chat.completions.create(
model = "mcb-chatbot",
messages = [{
"role": "user",
"content": "Hello world"
}]
)
print(chat.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.