Files
ragflow/internal/cpp/opencc/openccxx.h
Jin Hai 70e9743ef1 RAGFlow go API server (#13240)
# RAGFlow Go Implementation Plan 🚀

This repository tracks the progress of porting RAGFlow to Go. We'll
implement core features and provide performance comparisons between
Python and Go versions.

## Implementation Checklist

- [x] User Management APIs
- [x] Dataset Management Operations
- [x] Retrieval Test
- [x] Chat Management Operations
- [x] Infinity Go SDK

---------

Signed-off-by: Jin Hai <haijin.chn@gmail.com>
Co-authored-by: Yingfeng Zhang <yingfeng.zhang@gmail.com>
2026-03-04 19:17:16 +08:00

21 lines
419 B
C++

#pragma once
#include "opencc_types.h"
#include <string>
class OpenCC {
public:
OpenCC(const std::string &home_dir);
virtual ~OpenCC();
int open(const char *config_file, const char *home_dir);
long convert(const std::string &in, std::string &out, long length = -1);
long convert(const std::wstring &in, std::wstring &out, long length = -1);
private:
char *config_file;
opencc_t od;
};