GitHubSentinel icon indicating copy to clipboard operation
GitHubSentinel copied to clipboard

GitHub Sentinel 是专为大模型(LLMs)时代打造的智能信息检索和高价值内容挖掘 AI Agent。它面向那些需要高频次、大量信息获取的用户,特别是开源爱好者、个人开发者和投资人等。GitHub Sentinel 不仅能帮助用户自...

Results 6 GitHubSentinel issues
Sort by recently updated
recently updated
newest added
trafficstars

下面的方法 需要增加 路径是否存在的判断: def hn_daily_job(hacker_news_client, report_generator, notifier): LOG.info("[开始执行定时任务]Hacker News 今日前沿技术趋势") # 获取当前日期,并格式化为 'YYYY-MM-DD' 格式 date = datetime.now().strftime('%Y-%m-%d') # 生成每日汇总报告的目录路径 directory_path = os.path.join('hacker_news', date) # 生成每日汇总报告并保存 report, _ = report_generator.generate_hn_daily_report(directory_path) notifier.notify_hn_report(date,...

feat(v0.5): add email notifications, schedule and daemon service management.

执行export langchain-ai/langchain报错: Unexpected error: [Errno 2] No such file or directory: 'daily_progress/langchain-ai_langchain_2024-10-27.md' 看代码里src.github_client.GitHubClient.export_daily_progress方法直接open文件,没有先创建: filename = f'daily_progress/{repo.replace("/", "_")}_{date_str}.md' with open(filename, 'w') as f: 改成如下代码之后问题消失: filename = f'daily_progress/{repo.replace("/", "_")}_{date_str}.md' directory = os.path.dirname(filename)...

1.执行fetch langchain-ai/langchain命令会报错:main.py: error: unrecognized arguments: langchain-ai/langchain 看了一下代码发现CommandHandle.create_parser方法里,这里的代码没有给parser_fetch添加repo的argument: parser_fetch = subparsers.add_parser('fetch', help='Fetch updates immediately') parser_fetch.set_defaults(func=self.fetch_updates) 在中间加了一行:parser_fetch.add_argument('repo', type=str, help='The GitHub repository to fetch updates from')就不报这个错了。 2.改了第一条代码之后,执行还是会报错,看代码,发现CommandHandle.fetch_updates方法里 updates = self.github_client.fetch_updates()这一行没传repo参数。 改成updates = self.github_client.fetch_updates(args.repo)之后,fetch...