首页
AI Coding
NEW
沸点
课程
直播
活动
AI刷题
APP
插件
搜索历史
清空
创作者中心
写文章
发沸点
写笔记
写代码
草稿箱
创作灵感
查看更多
会员
登录
注册
AI 大模型应用进阶系列
我爱大圆脸
创建于2025-06-24
订阅专栏
AI 大模型应用开发学习的笔记总结和分享
等 4 人订阅
共7篇文章
创建于2025-06-24
订阅专栏
默认顺序
默认顺序
最早发布
最新发布
AI 大模型应用进阶系列(七):LangChain 核心 API
LangChain 官方文档:https://python.langchain.com.cn LangChain 中文社区:https://langchain.com.cn 生态 langgraph
AI 大模型应用进阶系列(六):提示词工程(Prompt Engineering)
什么提示词工程 提示词工程(Prompt Engineering)是近年来随着大语言模型(LLM)等生成式 AI 技术兴起而快速发展的一门技术,核心是通过设计、优化和测试提示词(Prompt) ,引导
AI 大模型应用进阶系列(五):FastAPI 入门
官网: https://fastapi.tiangolo.com/ 官网中文:https://fastapi.tiangolo.com/zh/ 特性 快速:可与 NodeJS 和 Go 并肩的极高性能
AI 大模型应用进阶系列(四):简单智能体实现
``` import requests import re class Tool: """工具基类,所有工具需继承此类""" def name(self): """返回工具名称""" return "
AI 大模型应用进阶系列(三):大模型流式输出
``` import requests import json import sys def stream_chat(api_key, api_url, model, prompt, history=
AI 大模型应用进阶系列(二):大模型调用
``` import requests import json class SimpleLLMChat: def __init__(self, api_url, api_key, model_name
AI 大模型应用进阶系列(一):Python 基础
数据类型 数字 字符串 布尔值 空值 列表 元祖 字典 集合 函数 1. 数据类型转换 函数 功能 示例 int(x) 将 x 转换为整数 int("10") → 10 float(x) 将 x 转换