from numpy_lru_cache_decorator import np_cache
@np_cache()
def function(array):
...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Streamlit Interface for Serena MCP using MCPO Proxy | |
| Uses MCPO to convert Serena MCP server to OpenAPI HTTP endpoints. | |
| Downloads Serena directly from git repository | |
| # streamlit run serena.py | |
| """ | |
| import streamlit as st |