feat: 新增 Gemini Live API 接入演示

This commit is contained in:
Del Wang
2025-04-26 19:00:56 +08:00
parent 0900b4cf2a
commit e53bc65715
14 changed files with 1854 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
/// 提供一个简便的日志记录宏,将消息传递给 Python 端
///
/// # 示例
///
/// ```
/// pylog!("这是一条日志消息");
/// pylog!("带有变量的日志: {}", variable);
/// ```
#[macro_export]
macro_rules! pylog {
($($arg:tt)*) => {
crate::python::PythonManager::instance().log(format!($($arg)*));
};
}