morph-data 0.3.0
pip install morph-data
Released:
Morph is a python-centric full-stack framework for building and deploying data apps.
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: Apache Software License (Apache-2.0)
- Author: Morph
- Requires: Python <3.13, >=3.9
Classifiers
- Development Status
- Environment
- Intended Audience
- License
- Programming Language
- Topic
Project description
Features
Morph is a python-centric full-stack framework for building and deploying AI apps.
- Fast to start 🚀 - Allows you to get up and running with just three commands.
- Deploy and operate 🌐 - Easily deploy your AI apps and manage them in production. Managed cloud is available for user authentication and secure data connection.
- No HTML/CSS knowledge required🔰 - With Markdown-based syntax and pre-made components, you can create flexible, visually appealing designs without writing a single line of HTML or CSS.
- Customizable 🛠️ - Chain Python and SQL for advanced AI workflows. Custom CSS and custom React components are available for building tailored UI.
Quick start
- Install morph
pip install morph-data
- Create a new project
morph new
- Start dev server
morph serve
- Visit
http://localhsot:8080
on browser.
How it works
Understanding the concept of developing an AI app in Morph will let you do a flying start.
- Develop the AI workflow in Python and give it an alias.
- Create an .mdx file. Each .mdx file becomes a page of your app.
- Place the component in the MDX file and specify the alias to connect to.
.
├─ pages
│ └─ index.mdx
└─ python
└─ chat.py
Building AI Apps
A little example
- Create each files in
python
andpages
directories.
Python: Using Langchain to create a AI workflow.
import morph
from morph import MorphGlobalContext
from morph_lib.stream import stream_chat
from langchain_openai import ChatOpenAI
from langchain_core.messages import HumanMessage
@morph.func
def langchain_chat(context: MorphGlobalContext):
llm = ChatOpenAI(model="gpt-4o")
messages = [HumanMessage(context.vars["prompt"])]
for token in llm.stream(messages):
yield stream_chat(token.content)
MDX: Define the page and connect the data.
# 🦜🔗 Langchain Chat
<Chat postData="langchain_chat" height={300} />
- Run
morph serve
to open the app!
Documentation
Visit https://docs.morph-data.io for more documentation.
Contributing
Thanks for your interest in helping improve Morph ❤️
- Before contributing, please read the CONTRIBUTING.md.
- If you find any issues, please let us know and open an issue.
Lisence
Morph is Apache 2.0 licensed.
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: Apache Software License (Apache-2.0)
- Author: Morph
- Requires: Python <3.13, >=3.9
Classifiers
- Development Status
- Environment
- Intended Audience
- License
- Programming Language
- Topic
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file morph_data-0.3.0.tar.gz
.
File metadata
- Download URL: morph_data-0.3.0.tar.gz
- Upload date:
- Size: 94.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.9.4 Darwin/23.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 918e3d11ccd448ea2bf131e292dca894db78850494360175565e1bccc4380925 |
|
MD5 | 1ab146fdf03d7aa8784bf269117c301d |
|
BLAKE2b-256 | c5b17949545404e98f576fc8110f41beffa55e30cf99385d373bf60daceb5b86 |
File details
Details for the file morph_data-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: morph_data-0.3.0-py3-none-any.whl
- Upload date:
- Size: 124.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.9.4 Darwin/23.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 81acb8df8660d7074f4f085fdad8b2847322aba365b5cd0ea2de1376c56b8c2b |
|
MD5 | 733235f7d6a69ae70f00a80c5c5db447 |
|
BLAKE2b-256 | df95e666497cde62fd27c41f3874122bac87342d1c31db925ac0156731bbbe30 |